GrapeCity CalendarGrid for Windows Forms 3.0J > CalendarGridの使い方 > InputManCell > GcDateTime型セル > ドロップダウンカレンダー (CalendarGcDateTimeCellType) |
ドロップダウンカレンダーは、視覚的な日付入力を可能にする入力補助機能です。
CalendarGcDateTimeCellTypeでは、DropDownプロパティが参照するDropDownオブジェクトを使用してドロップダウン時の動作を設定することができます。
Imports InputManCell = GrapeCity.Win.CalendarGrid.InputMan Dim today As DateTime = DateTime.Today Dim GcDateTimeCellType As New InputManCell.CalendarGcDateTimeCellType() ' ドロップダウンボタンを追加 GcDateTimeCellType.SideButtons.Add(New InputManCell.DropDownButton()) GcCalendarGrid1.Content(today).Rows(1).Cells(0).CellType = GcDateTimeCellType GcCalendarGrid1.ScrollIntoView(today)
using InputManCell = GrapeCity.Win.CalendarGrid.InputMan; var today = DateTime.Today; var gcDateTimeCellType = new InputManCell.CalendarGcDateTimeCellType(); // ドロップダウンボタンを追加 gcDateTimeCellType.SideButtons.Add(new InputManCell.DropDownButton()); gcCalendarGrid1.Content[today].Rows[1].Cells[0].CellType = gcDateTimeCellType; gcCalendarGrid1.ScrollIntoView(today);